0cffc971df9d0805422384b4394b4b0e6ea4d6fe,subprojects/launcher/src/main/java/org/gradle/launcher/cli/CommandLineActionFactory.java,CommandLineActionFactory,convert,#List#,70
Before Change
parser.option(VERSION, "version").hasDescription("Print version info.");
parser.option(GUI).hasDescription("Launches a GUI application");
parser.option(FOREGROUND).hasDescription("Starts the Gradle daemon in the foreground [experimental].");
parser.option(DAEMON).hasDescription("Uses the Gradle daemon to run the build. Starts the daemon if not running [experimental].");
parser.option(NO_DAEMON).hasDescription("Do not use the Gradle daemon to run the build [experimental].");
parser.option(STOP).hasDescription("Stops the Gradle daemon if it is running [experimental].");
After Change
parser.option(VERSION, "version").hasDescription("Print version info.");
parser.option(GUI).hasDescription("Launches the Gradle GUI.");
parser.option(FOREGROUND).hasDescription("Starts the Gradle daemon in the foreground.").experimental();
parser.option(DAEMON).hasDescription("Uses the Gradle daemon to run the build. Starts the daemon if not running.").experimental();
parser.option(NO_DAEMON).hasDescription("Do not use the Gradle daemon to run the build.").experimental();
parser.option(STOP).hasDescription("Stops the Gradle daemon if it is running.").experimental();